local s= Instance.new("Sound", owner.Character.Head) s.SoundId = "rbxassetid://6412753946" s.PlaybackSpeed = 0.5 s:Play() s.Looped = true local dances = {"http://www.roblox.com/asset/?id=182435998", "http://www.roblox.com/asset/?id=182436842", "http://www.roblox.com/asset/?id=182436935"} local i = 1 local l while true do if l then l:Stop() end local an = Instance.new("Animation") an.AnimationId = dances[i] local t = owner.Character.Humanoid:LoadAnimation(an) t.Priority = Enum.AnimationPriority.Action4 t:Play() t:AdjustSpeed(6) l = t i += 1 if i > 3 then i = 1 end task.wait(1.5) end